home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / eckelt01.zip / 1 / MAKEFILE.MS < prev    next >
Text File  |  1994-10-24  |  428b  |  26 lines

  1. # Makefile for Microsoft Visual C++ 2.0
  2. # Tested on Windows NT 3.5
  3. CPP = cl
  4. CPP=hcnt
  5.  
  6. .c.exe:
  7.   $(CPP) $<
  8.  
  9. .cpp.exe:
  10.   $(CPP) $<
  11.   
  12. .cpp.obj:
  13.   $(CPP) -c $*.cpp
  14.   
  15. all: declare.exe libtestc.exe libtest.exe \
  16.      sizeof.exe nestest.exe scoperes.exe \
  17.  
  18. libtestc.exe : libtestc.obj lib.obj
  19.   $(CPP) $**
  20.  
  21. libtest.exe : libtest.obj libcpp.obj
  22.   $(CPP) $**
  23.  
  24. nestest.exe : nestest.obj nested.obj
  25.   $(CPP) $**
  26.